home *** CD-ROM | disk | FTP | other *** search
- Path: keats.ugrad.cs.ubc.ca!not-for-mail
- From: c2a192@ugrad.cs.ubc.ca (Kazimir Kylheku)
- Newsgroups: comp.lang.c
- Subject: Re: CGI
- Date: 12 Mar 1996 12:23:40 -0800
- Organization: Computer Science, University of B.C., Vancouver, B.C., Canada
- Message-ID: <4i4mgcINNp2m@keats.ugrad.cs.ubc.ca>
- References: <31458EAE.1D1E@hub.ofthe.net>
- NNTP-Posting-Host: keats.ugrad.cs.ubc.ca
-
- In article <31458EAE.1D1E@hub.ofthe.net>,
- WILLIAM C BROWN <cb@hub.ofthe.net> wrote:
- >Has anybody done a CGI program in C?
- >Examples would be great also book and article recomendations.
-
- Yeah, how about this:
-
- #include <stdio.h>
-
- int main()
-
- {
- puts("<html><head><title>Web sucks!</title></head><body>");
- puts("<h1>Big Time!</h1>");
- puts("</body></html>");
-
- return 0;
- }
- --
-
-